home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem Kill PRODUCT FROM %2
-
- rem check for parm
- if "%2" == "" goto noParm
-
- rem check for dir
- if not exist %2\nul goto nodir
-
- Echo Deleting %2 ...
- delTREE %2
- Echo Success!
-
- goto exit
-
- :noparm
- Echo You must specify a directory.
- Echo Example: DEBUG 6 C:\APPS\SIGHTSND
- GOTO EXIT
-
- :nodir
- Echo The Directory: %2 does not exist.
-
- :exit
-